home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / fixfile.arc / FIXFILE.DOC < prev   
Encoding:
Text File  |  1980-01-01  |  5.9 KB  |  153 lines

  1.  
  2.                                   FIXFILE 2.1
  3.  
  4.                           Copyright 1987 by EVERYWARE
  5.  
  6. ==============================================================================
  7.  
  8.                                     WARRANTY
  9.  
  10.      EVERYWARE provides this program 'as is' without warranty of any kind,
  11. either expressed or implied.
  12.  
  13.      EVERYWARE in no event shall be liable for any loss due to, but not
  14. limited to, special, incidental, consequential, or other damages.
  15.  
  16. ==============================================================================
  17.  
  18.                                LICENSE AGREEMENT
  19.  
  20.      Any use of all or part of the program other than its intended purpose
  21.  shall be considered unlawful.  Any source code purchased (all or part) shall
  22.  be only used by the purchaser for noncommercial use only.  Any duplication of
  23.  any FIXFILE code is not permitted except by prior arrangement with EVERYWARE.
  24.  
  25. ==============================================================================
  26.  
  27.                                     HISTORY
  28.  
  29.       FIXFILE started off as a simple hex dump program to look at a database
  30.  I was writing.  I soon found that I had to modify the database and I could
  31.  either incorporate the ability to change the record pointers within the
  32.  database or I could change the hex dump program into a file modification
  33.  utility.  Thus FIXFILE was born.
  34.  
  35.       Expanding on the idea of the hex dump program and adding new features as
  36.  I needed them, FIXFILE grew into what you have now.  I have spent well over
  37.  500 hours increasing its performance and multiplying its abilities.  I also
  38.  have had it tested to insure it meets up to the standards you would expect
  39.  from quality software.
  40.  
  41.       As FIXFILE grew I started to compare it with other file modification
  42.  programs and I found many limitations with the other programs.  I felt the
  43.  public needed something that was fast, reliable, and easy to use to modify
  44.  their files.  I feel this is the very best in file modification programs.
  45.  
  46.       Since FIXFILE has helped me a great deal I decided to make it available
  47.  to those who would like it.  I also feel FIXFILE can benefit everybody, so
  48.  that's why I am offering it for only $10.00.  This helps cover the cost of
  49.  development, and the cost to test it professionally.
  50.  
  51.       The source code for FIXFILE, which was written in Turbo Pascal, is
  52.  available for $30.00.
  53.  
  54.                                                           Steven L. Every
  55.  
  56. ==============================================================================
  57.  
  58.  
  59.  
  60.  
  61.                                                                      Page 2
  62.  
  63.  
  64. ==============================================================================
  65.  
  66.  
  67.                                  COMMAND KEYS
  68.  
  69.  
  70.  The following keys are used to exit the program and return to DOS:
  71.  
  72.  
  73.             KEY         FUNCTION
  74.            ----------- -------------------------------------------------
  75.             Esc         Exit program and save any changes made to file
  76.             Ctrl-C      Exit program and ignore any changes made to file
  77.  
  78.  
  79.  The following keys are used for searching:
  80.  
  81.             KEY         FUNCTION
  82.            ----------- -------------------------------------------------
  83.             F7          Search for ASCII string
  84.             F8          Search for hex pattern
  85.  
  86.  
  87.  The following keys are used to move around the file:
  88.  
  89.             KEY         FUNCTION
  90.            ----------- -------------------------------------------------
  91.             F6          Goto page nn ($nn)
  92.             Tab         Toggle cursor between Hex and character section
  93.             Home        Move cursor to beginning of line
  94.             End         Move cursor to end of line
  95.             Ctrl-home   Move cursor to beginning of section (Hex or char)
  96.             Ctrl-end    Move cursor to end of section (Hex or char)
  97.             PgUp        Move cursor backward one page (256 bytes)
  98.             PgDn        Move cursor forward one page (256 bytes)
  99.             Ctrl-PgUp   Move cursor to beginning of file
  100.             Ctrl-PgDn   Move cursor to end of file
  101.             Arrow keys  Move cursor about display in direction of arrow
  102.  
  103.  
  104.  The following keys have misc. functions:
  105.  
  106.             KEY         FUNCTION
  107.            ----------- -------------------------------------------------
  108.             Ctrl-A      Restore current page back to its original data
  109.             F1          Show this help screen
  110.             F2          Clear screen then retype display
  111.             F3          Fill current page with constant nn ($nn)
  112.             F4          Copy data from another page to current page
  113.             F5          Write current display to file
  114.             F9          Toggle UPPER/lower case sensitive in searching
  115.             F10         Toggle graphics/ASCII in character section
  116.  
  117.  
  118. ==============================================================================
  119.  
  120.  
  121.  
  122.  
  123.  
  124.                                                                      Page 3
  125.  
  126.  
  127. ==============================================================================
  128.  
  129.  
  130.                                 NOTES ON USAGE
  131.  
  132.       FIXFILE can edit any type of file on a IBM-PC or compatible computer.
  133.  
  134.       A filename can be passed as a parameter on the command line if desired.
  135.  If a parameter is passed the program displays no logo.
  136.  
  137.       There are no switches.
  138.  
  139.       Changes made to the file are only done when you exit the program by
  140.  using the ESC key or when the available memory drops below 1 Kbytes.
  141.  
  142.      When entering a number you may place a '$' at the beginning of the
  143.  number which signifies that that number is a hexidecimal number.  No '$' at
  144.  the beginning indicates a decimal number.  There is no binary or octal
  145.  representation.
  146.  
  147.       F1 is a help key.
  148.  
  149.  
  150. ==============================================================================
  151.  
  152.  
  153.